home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 52 / Amiga Format AFCD52 (Issue 136, May 2000).iso / -serious- / workbench / iconimagecopier / deinstall < prev    next >
Text File  |  2000-02-28  |  941b  |  35 lines

  1. (IF (= @language "svenska")
  2.     (
  3.         (SET #welcome "\n\nDetta installerarprogram kommer att försöka ta bort IconImageCopier från din hårddisk!\n\n")
  4.         (SET #deinstallFail "\n\nAvinstallationsinformationen hittades inte (S:Deinstall_IconImageCopier) så programmet har inte tagits bort!\n\n")
  5.         (SET #exitHelp "\n\nKlart!\n\n")
  6.     )
  7.     (
  8.         (SET #welcome "\n\nThis installer script will remove IconImageCopier from your system!\n\n")
  9.         (SET #deinstallFail "\n\nDeinstallation info was not found (S:Deinstall_IconImageCopier) so the program has not been removed!\n\n")
  10.         (SET #exitHelp "\n\nFinished!\n\n")
  11.     )
  12. )
  13.  
  14. (WELCOME #welcome)
  15.  
  16. (IF (>= (/ @installer-version 65536) 44)
  17.     (EFFECT "center" "radial" $000000 $0000FF)
  18. )
  19.  
  20. (COMPLETE 0)
  21.  
  22. (IF (EXISTS "S:Deinstall_IconImageCopier" (NOREQ) )
  23.     (
  24.         (EXECUTE "S:Deinstall_IconImageCopier")
  25.         (DELETE "S:Deinstall_IconImageCopier")
  26.     )
  27.     (
  28.         (MESSAGE #deinstallFail)
  29.     )
  30. )
  31.  
  32. (COMPLETE 100)
  33.  
  34. (EXIT #exitHelp (QUIET))
  35.